From efcbc35fed57397a6f3c94a0e57c1f822a786834 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 11 Jan 2001 14:23:25 +0000 Subject: [PATCH] (eval-after-load): Call load-symbol-file-load-history to ensure that eval-after-load works for files dumped with Emacs. --- lisp/subr.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/subr.el b/lisp/subr.el index 2dc159a3424..3a60e15b0e5 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -804,6 +804,9 @@ It does nothing if FORM is already on the list for FILE. FILE must match exactly. Normally FILE is the name of a library, with no directory or extension specified, since that is how `load' is normally called." + ;; Make sure `load-history' contains the files dumped with Emacs + ;; for the case that FILE is one of the files dumped with Emacs. + (load-symbol-file-load-history) ;; Make sure there is an element for FILE. (or (assoc file after-load-alist) (setq after-load-alist (cons (list file) after-load-alist))) -- 2.30.2